Market analysis history
⚠️ Deprecation notice: This API will be discontinued from 2026-06-01. It will then return error code
50002(INTERFACE_DEPRECATED). Please migrate to the new API/open/v1/ai/getMarketAnalysisList.
API description
Market analysis is ValueAgent’s synthesized output on BTC/ETH price action using multi-dimensional data.
Use cases:
- Fetch AI synthesized market analysis for BTC/ETH
- Understand main-capital trends and composite signals
- Support short-term directional judgment
Data refresh: every 5 minutes
Request URL
- Method:
POST - Path:
/open/v1/ai/getAiTokenAnalyseResultList
Credit consumption
- Credits per call:
1
Prerequisites
No prerequisites; you can call this API directly.
Request parameters
Pass parameters in the request body as JSON.
| Parameter | Type | Required | Description |
|---|---|---|---|
| page | integer | No | Current page, default 1 |
| pageSize | integer | No | Page size, default 10, max 100 |
| beginTime | string | No | Start time |
| endTime | string | No | End time |
Response fields
Only fields inside each object of the data array:
| Field | Type | Actual type | Description |
|---|---|---|---|
| uniqueId | string | string | Unique id |
| ts | long | long | Updated at (ms timestamp) |
| content | string | string | Analysis text |
Field semantics
| Field | Meaning | Guidance |
|---|---|---|
| uniqueId | Unique message id | Identify and trace each analysis message |
| ts | Published at (ms timestamp) | Assess freshness of the analysis |
| content | AI analysis text | Main-capital view, composite read, risk notes, etc. |
Request example
json
{
"page": 1, // Current page, default 1
"pageSize": 10, // Page size, default 10, max 100
"beginTime": "1775732440000", // Start time
"endTime": "1775734240000" // End time
}cURL example (Linux/macOS)
bash
curl --location --request POST 'http://${host}/api/open/v1/ai/getAiTokenAnalyseResutList' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: xxxxx' \
--header 'X-TIMESTAMP: xxxxx' \
--header 'X-SIGN: xxxxx' \
--header 'Accept: */*' \
--data-raw '{
"page": 1,
"pageSize": 10,
"beginTime": "1775732440000",
"endTime": "1775734240000"
}'cURL example (Windows CMD)
cmd
curl --location --request POST "http://${host}/api/open/v1/ai/getAiTokenAnalyseResutList" ^
--header "Content-Type: application/json" ^
--header "X-API-KEY: xxxxx" ^
--header "X-TIMESTAMP: xxxxx" ^
--header "X-SIGN: xxxxx" ^
--header "Accept: */*" ^
--data-raw "{ \"page\": 1, \"pageSize\": 10, \"beginTime\": \"1775732440000\", \"endTime\": \"1775734240000\"}"Success response example
json
{
"code": 200,
"message": "success",
"data": [
{
"uniqueId": "645", // Unique id
"ts": 1775734240000, // Updated at
"content": "? BTC/ETH 日内主力资金趋势分析(ValueScan) \n�?当前时间�?026-04-09 19:30:40 \n? 当前币价:BTC: $71078.85 ETH:$2180.5 \n\n\nBTC分析�? \n? AI主力资金分析:日内主力资金双净流出�?h合约与现货同步大幅净流出,空头主�? \n\n? AI综合分析: ?利空 \n日内主力合约与现货均深度净流出�?h空头压倒性主导,价格承压于关键压�?1093.99,支�?1037.53岌岌可危 \n\n⚠️风险提示:若1h双市场持续净流出且跌�? // Analysis text
},
{
"uniqueId": "644",
"ts": 1775733940000,
"content": "? BTC/ETH 日内主力资金趋势分析(ValueScan) \n�?当前时间�?026-04-09 19:25:40 \n? 当前币价:BTC: $71175.42 ETH:$2182 \n\n\nBTC分析�? \n? AI主力资金分析:日内主力资金双净流出�?h合约空头压倒性主�? \n\n? AI综合分析: ?利空 \n日内主力现货与合约均大幅净流出�?h合约资金断崖式流出,关键压力�?1229,支�?1099承压明显�? \n\n⚠️风险提示:若1h主力合约持续强流出且跌破71099.6,或加速下�?07"
},
{
"uniqueId": "643",
"ts": 1775733640000,
"content": "? BTC/ETH 日内主力资金趋势分析(ValueScan) \n�?当前时间�?026-04-09 19:20:40 \n? 当前币价:BTC: $71209.75 ETH:$2183.91 \n\n\nBTC分析�? \n? AI主力资金分析:日内主力资金双净流出�?h合约现货均空头主�? \n\n? AI综合分析: ?利空 \n日内主力合约现货同步大幅净流出�?h空头强势压制,关键压�?1229,支撑承压于71099�? \n\n⚠️风险提示:若1h双市场持续净流出且跌�?1099,或加速下�?0727;若�?
}
// ... more items omitted
],
"requestId": "xxx-xxx-xxx"
}